home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
ab20
/
unarced
/
datacomm
/
vlt
/
rexx
/
setping.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-03-17
|
420b
|
22 lines
/** SetPing.rexx
*
* Set up the PingServer with a nice chime.
* Requires 'Ping'. This macro is usually run in the startup-sequence.
*
**/
if ~show('l','rexxarplib.library') then addrexxlib
/*
* Run Ping:
*/
address command 'ping'
/*
* Wait until its port appears
*/
do i = 1 to 20
if ~showlist('p', 'PingServer') then call delay 20
else leave i
end
call sendparsed('PingServer', SET, 1000, 5000, 64)
exit